home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / presto / presto10.lha / src / config.h < prev    next >
C/C++ Source or Header  |  1991-12-11  |  354b  |  25 lines

  1. /*  Number of processors supported by PRESTO.
  2.  */
  3.  
  4. #define NUMPROCS 16
  5.  
  6. /*  Enable FPU preemption bug
  7.  */
  8.  
  9. #ifdef sequent
  10. #ifdef i386
  11. #ifndef FPU_PREEMPT
  12. #define FPU_PREEMPT
  13. #endif 
  14. #define SHARED   /* Sequent Symmetry is a shared memory device */
  15. #endif /* i386 */
  16. #endif /* sequent */
  17.  
  18. /* Enable preemption
  19.  */
  20.  
  21. #ifndef PREEMPT
  22. #define PREEMPT
  23. #endif
  24.  
  25.